home *** CD-ROM | disk | FTP | other *** search
/ The Other Thing / The Other Thing.iso / WILDRIDE / WILDRIDE.EXE / X / 225 < prev    next >
Text File  |  1996-09-17  |  5KB  |  265 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  22;
  136.  8000.000000;-65.533775;28955.484375;,
  137.  8000.000000;-64.189178;-12375.781250;,
  138.  -8000.000000;-65.533775;28955.484375;,
  139.  -8000.000000;-64.189178;-12375.781250;,
  140.  10000.000000;-57.638588;603.911011;,
  141.  10000.000000;-64.189178;242.352783;,
  142.  10000.000000;-51.009209;343.030609;,
  143.  10000.000000;-23.603104;389.057159;,
  144.  10000.000000;12.462219;416.196716;,
  145.  10000.000000;41.648895;426.177979;,
  146.  10000.000000;58.636871;428.644165;,
  147.  10000.000000;65.772690;433.194092;,
  148.  10000.000000;62.591263;455.270111;,
  149.  -10000.000000;-57.638588;603.911011;,
  150.  -10000.000000;-64.189178;242.352783;,
  151.  -10000.000000;-51.009209;343.030609;,
  152.  -10000.000000;-23.603104;389.057159;,
  153.  -10000.000000;12.462219;416.196716;,
  154.  -10000.000000;41.648895;426.177979;,
  155.  -10000.000000;58.636871;428.644165;,
  156.  -10000.000000;65.772690;433.194092;,
  157.  -10000.000000;62.591263;455.270111;;
  158.  
  159.  20;
  160.  3;4,2,0;,
  161.  3;4,13,2;,
  162.  3;1,14,5;,
  163.  3;1,3,14;,
  164.  3;5,15,6;,
  165.  3;5,14,15;,
  166.  3;6,16,7;,
  167.  3;6,15,16;,
  168.  3;7,17,8;,
  169.  3;7,16,17;,
  170.  3;8,18,9;,
  171.  3;8,17,18;,
  172.  3;9,19,10;,
  173.  3;9,18,19;,
  174.  3;10,20,11;,
  175.  3;10,19,20;,
  176.  3;11,21,12;,
  177.  3;11,20,21;,
  178.  3;12,13,4;,
  179.  3;12,21,13;;
  180.  
  181.  MeshMaterialList {
  182.   1;
  183.   1;
  184.   0;;
  185.   Material {
  186.    1.000000;1.000000;1.000000;1.000000;;
  187.    15.000000;
  188.    1.000000;1.000000;1.000000;;
  189.    0.000000;0.000000;0.000000;;
  190.   }
  191.  }
  192.  MeshNormals {
  193.   22;
  194.   0.000000;1.000000;0.000278;,
  195.   0.000000;1.000000;0.000000;,
  196.   0.000000;1.000000;0.000278;,
  197.   0.000000;1.000000;0.000000;,
  198.   0.000000;0.942688;0.333675;,
  199.   0.000000;0.916344;0.400393;,
  200.   0.000000;0.981743;0.190212;,
  201.   0.000000;0.978119;-0.208046;,
  202.   0.000000;0.778669;-0.627435;,
  203.   -0.000001;0.446705;-0.894681;,
  204.   -0.000001;0.633186;-0.774000;,
  205.   0.000000;0.981318;0.192393;,
  206.   0.000000;0.706256;0.707956;,
  207.   0.000000;0.737197;0.675678;,
  208.   0.000000;0.707107;0.707107;,
  209.   0.000000;0.751600;0.659619;,
  210.   0.000000;0.869371;0.494160;,
  211.   0.000000;0.948429;0.316989;,
  212.   0.000001;0.986458;0.164012;,
  213.   -0.000006;0.997403;0.072020;,
  214.   0.000000;0.959995;0.280016;,
  215.   0.000000;0.654737;0.755857;;
  216.  
  217.   20;
  218.   3;4,2,0;,
  219.   3;4,13,2;,
  220.   3;1,14,5;,
  221.   3;1,3,14;,
  222.   3;5,15,6;,
  223.   3;5,14,15;,
  224.   3;6,16,7;,
  225.   3;6,15,16;,
  226.   3;7,17,8;,
  227.   3;7,16,17;,
  228.   3;8,18,9;,
  229.   3;8,17,18;,
  230.   3;9,19,10;,
  231.   3;9,18,19;,
  232.   3;10,20,11;,
  233.   3;10,19,20;,
  234.   3;11,21,12;,
  235.   3;11,20,21;,
  236.   3;12,13,4;,
  237.   3;12,21,13;;
  238.  }
  239.  MeshTextureCoords {
  240.   22;
  241.   15.996849;-75.994217;,
  242.   15.996838;38.952354;,
  243.   -117.248749;-75.994263;,
  244.   -117.248734;38.952316;,
  245.   25.383537;-0.146613;,
  246.   25.383537;0.655338;,
  247.   25.383537;0.433162;,
  248.   25.383537;0.279578;,
  249.   25.383537;0.197546;,
  250.   25.383537;0.153752;,
  251.   25.383537;0.137873;,
  252.   25.383537;0.115249;,
  253.   25.383537;0.086472;,
  254.   -127.222290;-0.146598;,
  255.   -127.222290;0.655351;,
  256.   -127.222290;0.433176;,
  257.   -127.222290;0.279593;,
  258.   -127.222290;0.197566;,
  259.   -127.222290;0.153805;,
  260.   -127.222290;0.137431;,
  261.   -127.222290;0.115263;,
  262.   -127.222290;0.086486;;
  263.  }
  264. }
  265.